home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / CLIPFN20.ZIP / CFDEMO32.DPR < prev    next >
Encoding:
Text File  |  1996-05-10  |  192 b   |  14 lines

  1. program CFDemo32;
  2.  
  3. uses
  4.   Forms,
  5.   Main_32 in 'Main_32.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.